home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / images / freedos.img / LEVEL3 / AUTORUN3.CAB / Bin / Autorun9.bat
DOS Batch File  |  2005-01-16  |  1KB  |  42 lines

  1. @if ""=="%debug%" echo off
  2. for %%i in (-? -h -H) do if "%%i"=="%1" goto _help0
  3. if "/h"=="%1" goto _help0
  4. if "/H"=="%1" goto _help0
  5. if "/?"=="%1" goto _help0
  6. for %%i in (1 2 3) do if "%%i"=="%1" goto _start
  7. goto _help0
  8.  
  9. :_start
  10. if not exist %ramdrv%\etc\autorun%1.bat goto _help
  11. type %ramdrv%\etc\autorun%1.bat >%tmp%\_autorun.bat
  12. shift
  13. call %tmp%\_autorun.bat %1 %2 %3 %4 %5 %6 %7 %8
  14. goto _end
  15.  
  16. :_help0
  17. echo.
  18. echo AUTORUN?: auto-launches '%srcdrv%\etc\autorun?.bat'
  19. echo.
  20. echo          Make a batch-file autorun?.bat with your
  21. echo          commands and put it in dir '%srcdrv%\etc\'.
  22. echo          Then put this CAB in Level ?.
  23. echo.
  24. echo          Substitute 1, 2 or 3 for '?'
  25. echo.
  26. @rem pause
  27. goto _end
  28.  
  29. :_help
  30. echo.
  31. echo AUTORUN%1: auto-launches '%srcdrv%\etc\autorun%1.bat'
  32. echo.
  33. echo          Make a batch-file autorun%1.bat with your
  34. echo          commands and put it in dir '%srcdrv%\etc\'.
  35. echo          Then put this CAB in Level %1.
  36. echo.
  37. @rem pause
  38. goto _end
  39.  
  40. :_end
  41. for %%i in (%tmp%\_autorun.*) do del %%i
  42.